/* BARRA DE PROGRESSO PRINCIPAL (FRENTES) */
.progress-info {
    min-width: 250px;
}

.progress-percent {
    font-size: 13px;
    color: #00ffcc;
    text-align: right;
    margin-bottom: 5px;
    font-weight: bold;
    letter-spacing: 1px;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #00ffcc33;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ffcc, #00cc88);
    box-shadow: 0 0 10px #00ffcc;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

/* BARRA DE PROGRESSO PEQUENA (CAPÍTULOS) */
.progress-percent-small {
    font-size: 11px;
    color: #aaa;
    text-align: right;
    margin-bottom: 4px;
}

.progress-container-small {
    width: 100%;
    height: 5px;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.progress-bar-small {
    height: 100%;
    background: linear-gradient(90deg, #00ffcc, #00cc88);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 8px;
}

.modulos-count {
    font-size: 9px;
    color: #666;
    margin-top: 5px;
    text-align: right;
}

/* FRASE STATUS */
.frase-status {
    font-size: 10px;
    color: #666;
    margin-top: 8px;
    letter-spacing: 1px;
    font-style: italic;
}